home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr36 / lod370b.zip / GAME.CTL < prev    next >
Text File  |  1993-04-23  |  6KB  |  141 lines

  1. ;Door Control file
  2. ;-----------------
  3. ;
  4. ;Sysopfirst: Specifies the first name of the sysop as it will be shown to
  5. ;            the users.
  6. ;
  7. ;SysopLast:  Specifies the last name of the sysop as it will be shown to
  8. ;            the users.
  9. ;
  10. ;BBSName:    Specifies the name of the bbs as it will be shown to users.
  11. ;
  12. ;Mono:       Will disable color on the local side. (Necessary if you are
  13. ;            running a monochrome system)
  14. ;
  15. ;BBSType:    Specifies the type of bbs software under which this door program
  16. ;            will be run. Valid bbs types include:
  17. ;
  18. ;                    LOCAL - Always log on as local user
  19. ;                    SYSOP - Always log on as sysop
  20. ;                     RBBS - Rbbs-Pc version 16.1+ (uses DORINFOx.DEF)
  21. ;                    QUICK - Quickbbs; Uses DORINFOx.DEF (same as above)
  22. ;                    PCB12 - Pcboard version 12 (note: see COMPORT note below)
  23. ;                    PCB14 - Pcboard version 14
  24. ;                     WWIV - WWIV bbs (uses chain.txt)
  25. ;                  PHOENIX - Phoenix bbs
  26. ;                  WILDCAT - Wildcat bbs (only versions before WC 3.0!!)
  27. ;                  DOORSYS - Any bbs using door.sys (WC 3.0, Gap, etc)
  28. ;                 SPITFIRE - Spitfire bbs system (SFDOORS.DAT)
  29. ;                      2AM - 2AM-bbs (jumper.dat)
  30. ;
  31. ;ComPort:    For bbs types that do not have the com-port contained in their
  32. ;            door information files (such as PCBOARD-12), you will have to
  33. ;            specify the com-port. Simply put the port number (i.e. 1,2,etc)
  34. ;            not the whole word COM1.
  35. ;
  36. ;LockBaud:   This will specify a locked baud rate. If you specify this
  37. ;            parameter, then no matter what the bbs software says, this
  38. ;            baud rate will be used. [NOTE: You can also specify the locked
  39. ;            baud rate using /Bxxxx from the command line]
  40. ;
  41. ;Internal:   Selecting this option will cause doordriver to use it's internal
  42. ;            buffered comm routines. If you do not have a fossil, it is a good
  43. ;            idea to use this option.
  44. ;
  45. ;Oldinternal:Starting with version 3.60, I added some revised comm routines
  46. ;            which are now used under the "Internal" keyword. However, if these
  47. ;            new routines don't work, then you may use the "oldinternal"
  48. ;            keyword to select the older routines.
  49. ;
  50. ;Maxtime:    The maxtime parameter will allow you to specify a maximum time
  51. ;            per session that a user may be in the door. (i.e. if you
  52. ;            specified 30 minutes, then if the user had 60 mins left, he could
  53. ;            only play for 30 mins)
  54. ;
  55. ;Status:     Specify "ON" if you wish the status line to appear at the bottom
  56. ;            of "OFF" if you wish it to be disabled.
  57. ;
  58. ;Statfore:   The foreground color of the status line (default 0)
  59. ;
  60. ;Statback:   The background color of the status line (default 7)
  61. ;
  62. ;Color1:     Tells doordriver to select ANSI graphics when a "1" is passed
  63. ;            in the graphics parameter of the DORINFOx.DEF. From what I
  64. ;            understand, FORCE and QUICKBBS require this option set although
  65. ;            RBBS should not.
  66. ;
  67. ;NODIRECT:   This will turn off direct video writing. If you are using
  68. ;            desqview and LOD interferes with your other applications, then
  69. ;            you may wish to uncomment this line.
  70. ;
  71. ;NOAUTOMAINT: By Default, LOD will perform maintenance when the first user
  72. ;             logs on each day. Thus, the /M maintenance switch is not
  73. ;             necessary. However, if you want to control the maintenance
  74. ;             runs, then you may uncomment this switch and use the
  75. ;             traditional /M command line option to force maintenance.
  76. ;
  77. ;ANSIRANK:    Specifies the name of the file where ANSI rankings will be
  78. ;             placed.
  79. ;
  80. ;ASCIIRANK:   Specifies the name of the file where ASCII rankings will be
  81. ;             placed.
  82. ;
  83. ;MAXTIME:     Specifies the maximum time per day for each user in minutes.
  84. ;             Defaulted to unlimited.
  85. ;
  86. SYSOPFIRST SCOTT
  87. SYSOPLAST BAKER
  88. BBSNAME THE NOT-YET-NAMED BBS
  89. ;
  90. ;       ::::------- Put your bbs type here! Select from those listed above
  91. ;       ::::
  92. ;       \/\/
  93. BBSTYPE RBBS
  94. ;
  95. ;                   If you are using a bbs type that doesn't provide the com
  96. ;        ::-------- port num in it's door information file (such as pcb-12),
  97. ;        \/         then uncomment this line and put your com port here.
  98. ;COMPORT 1
  99. ;
  100. ;          ::------ If you are using a locked com port, then you may wish to
  101. ;          \/       un-comment and use this line.
  102. ;LOCKBAUD 38400
  103. ;
  104. ;
  105. ;        ::-------- Uncomment this if you DO NOT want to use a fossil driver.
  106. ;        \/         (I recommend using a fossil if at all possible)
  107. ;INTERNAL
  108. ;
  109. ;        ::-------- If you insist on not using a fossil driver, and INTERNAL
  110. ;        ::         above doesn't work, then try the following instead. (Note,
  111. ;        \/         you may use INTERNAL or OLDINTERNAL, but NOT both)
  112. ;OLDINTERNAL
  113. ;                   Uncomment this line if you are running a monochrome
  114. ;  ::-------------- system on the local side.
  115. ;  \/
  116. ;MONO
  117. ;
  118. STATUS ON
  119. STATFORE 0
  120. STATBACK 7
  121. ;                   Uncomment this if LOD doesn't give color output to users
  122. ;  ::-------------- who have color (ansi) selected.
  123. ;  \/
  124. ;COLOR1
  125. ;
  126. ;NODIRECT
  127. ;
  128. ;NOAUTOMAINT
  129. ;
  130. ;Ansi rankings file (generated at player logoff)
  131. ;
  132. ANSIRANK LODRANK.ANS
  133. ;
  134. ;Ascii rankings file (generated at player logoff)
  135. ;
  136. ASCIIRANK LODRANK.ASC
  137. ;
  138. ;MAXTIME 60
  139. ;
  140.  
  141.